home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 43.zip / ANC 15.adf / 10.doc < prev    next >
Text File  |  1987-01-01  |  4KB  |  104 lines

  1. PIRATE! PIRATE! PIRATE! PIRATE! PIRATE! PIRATE! PIRATE! PIRATE! PIRATE!
  2. PIRATE! PIRATE! PIRATE! PIRATE! PIRATE! PIRATE! PIRATE! PIRATE! PIRATE!
  3.  
  4. Don't help out those PD hypocrites by putting these or any other of our docs
  5. on PD boards.
  6.  
  7. Warp v1.1x.  The Release.  Written by the fine programmers at MAAD.
  8.  
  9. usage
  10.   WARP read <start> <end> <flname> [nocomp | nozero | append | mfm | +readme]
  11. or
  12.   WARP write <filename> <filename> <filename> ...
  13.  
  14. start and ending track numbers range from 0 to 79 in DOS mode. only in mfm 
  15. mode can tracks 80 - 82 be read or written to.
  16.  
  17. all input and output files with the exception of the readme file require
  18. the '.WRP' ending. If you don't specify it, it will be automatically 
  19. appended.
  20.  
  21. if track 0 of the disk has the SCA virus , it will not be allowed to Warp up.
  22. You must install the disk and retry it.
  23.  
  24. explanations of the command line options:
  25.  
  26. NOCOMP  - override compression schemes and store the data directly.
  27.  
  28. NOZERO  - override use of the DOS bitmap structure for eliminating unused 
  29.       sectors. if the disk has AmigaDOS standard tracks but does not 
  30.       use the AmigaDOS filing system, this option must be used.
  31.       IMPORTANT!!!!! you should always check to see if this option 
  32.       should be used. I dont ever want to see any trackered program 
  33.       anywhere.
  34.  
  35. APPEND  - appends contents on to the end of the file if it exists, rather 
  36.           than creating a new one.
  37.  
  38. MFM     - use raw MFM standard disk read/writes.
  39.  
  40. +readme - Will read in the contents of the file 'readme' compress them and
  41.           store the text inside the warp file. When the person un-warps the
  42.       file, the text will displayed. Used for giving credit where credit
  43.       is due.
  44.  
  45. examples.
  46.  
  47.     WARP read 0 19 ram:stuff
  48.  
  49. result:  reads tracks 0 thru 19 using the normal Amiga trackdisk device and 
  50. compressing 1 track at a time and storing in the file ram:stuff.WRP .
  51.  
  52.     WARP read 0 19 ram:stuff mfm
  53.  
  54. result:  same as above except uses raw mfm unencoded/decoded reads from the 
  55. disk drive.
  56.  
  57.     WARP read 60 69 ram:stuff append
  58.  
  59. result:  if the file 'ram:stuff.WRP' exists , the tracks will be appended to 
  60. the end of the file. this is good for creating one WARP file containing 
  61. different tracks from each part of this disk.
  62.  
  63.     WARP read 0 19 ram:stuff nocomp
  64.  
  65. result:  reads tracks 0 thru 19 in normal DOS mode , overriding compression.
  66.  
  67.  
  68.     WARP read 0 79 ram:stuff nocomp nozero +ram:readme
  69.  
  70. result:  reads in the contents of 'ram:readme' and compresses it and stores
  71.      it then reads tracks 0 thru 79 in normal DOS mode, overriding 
  72.      compression, and overriding bit-map zeroing.
  73.  
  74.     WARP write ram:stuff
  75.  
  76. will untracker the tracks contained in the file ram:stuff. WARP will 
  77. automatically read in track numbers and modes and do CRC checking.
  78. therefore , it is possible to combine any combination of mfm or dos tracks 
  79. together into one file.
  80.  
  81.     WARP write ram:stuff1 ram:stuff2 ram:stuff3 ram:stuff4
  82.  
  83. will untracker the tracks contained in the files stuff1.WRP thru stuff4.WRP
  84. on to the disk in drive 0.
  85.  
  86.  
  87. Also here are the docs for the Wsplit , the split track utility.
  88.  
  89. Usage: Wsplit <input file> <output file> <start track #> <end track #>
  90.  
  91. Wsplit will scan the input file and if it finds any tracks within the
  92. specified range it will copy them over to the output file.
  93.  
  94. Ex:    Wsplit df0:Ferrari df1:F1 0 39
  95.  
  96. This will scan the Warp file 'df0:Ferrari.WRP' for tracks 0 thru 39. if it
  97. finds them , they will be copied over to the file 'df1:F1.WRP'.
  98.  
  99. Wsplit was scammed in a couple hours especially for those Utah guys. I hope
  100. you put it to good use. (I would've had it up a couple days ago , but
  101. the damn Manx library printf '\r' is screwed and I had to find out the hard
  102. way.)
  103.